Document Solutions for Imaging
GrapeCity.Documents.Imaging Assembly / GrapeCity.Documents.Text Namespace / TextLayout Class / Append Method / Append(Int32[],Int32,Int32) Method
An array of UTF-32 characters (code points).
Index of the first code point in the subrange.
Number of code points in the subrange.

In This Topic
    Append(Int32[],Int32,Int32) Method
    In This Topic
    Adds a text run with default formatting to the end of the Inlines collection.
    Syntax
    'Declaration
     
    Public Overloads Function Append( _
       ByVal codePoints() As System.Integer, _
       ByVal startIndex As System.Integer, _
       ByVal count As System.Integer _
    ) As TextRun
    public TextRun Append( 
       System.int[] codePoints,
       System.int startIndex,
       System.int count
    )

    Parameters

    codePoints
    An array of UTF-32 characters (code points).
    startIndex
    Index of the first code point in the subrange.
    count
    Number of code points in the subrange.

    Return Value

    The created text run.
    See Also